home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / inet / rfc / rfc1269 < prev    next >
Text File  |  1991-11-05  |  26KB  |  731 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7. Network Working Group                                          S. Willis
  8. Request for Comments: 1269                                    J. Burruss
  9.                                            Wellfleet Communications Inc.
  10.                                                             October 1991
  11.  
  12.                      Definitions of Managed Objects
  13.               for the Border Gateway Protocol (Version 3)
  14.  
  15. Status of this Memo
  16.  
  17.    This memo is an extension to the SNMP MIB.  This RFC specifies an IAB
  18.    standards track protocol for the Internet community, and requests
  19.    discussion and suggestions for improvements.  Please refer to the
  20.    current edition of the "IAB Official Protocol Standards" for the
  21.    standardization state and status of this protocol.  Distribution of
  22.    this memo is unlimited.
  23.  
  24. 1.  Abstract
  25.  
  26.    This memo defines a portion of the Management Information Base (MIB)
  27.    for use with network management protocols in TCP/IP-based internets.
  28.    In particular, it defines objects for managing the Border Gateway
  29.    Protocol [11,12].
  30.  
  31. 2.  The Network Management Framework
  32.  
  33.    The Internet-standard Network Management Framework consists of three
  34.    components.  They are:
  35.  
  36.       RFC 1155 which defines the SMI, the mechanisms used for describing
  37.       and naming objects for the purpose of management.  RFC 1212
  38.       defines a more concise description mechanism, which is wholly
  39.       consistent with the SMI.
  40.  
  41.       RFC 1156 which defines MIB-I, the core set of managed objects for
  42.       the Internet suite of protocols.  RFC 1213, defines MIB-II, an
  43.       evolution of MIB-I based on implementation experience and new
  44.       operational requirements.
  45.  
  46.       RFC 1157 which defines the SNMP, the protocol used for network
  47.       access to managed objects.
  48.  
  49.    The Framework permits new objects to be defined for the purpose of
  50.    experimentation and evaluation.
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58. Willis & Burruss                                                [Page 1]
  59.  
  60. RFC 1269                       BGP-3 MIB                    October 1991
  61.  
  62.  
  63. 3.  Objects
  64.  
  65.    Managed objects are accessed via a virtual information store, termed
  66.    the Management Information Base or MIB.  Objects in the MIB are
  67.    defined using the subset of Abstract Syntax Notation One (ASN.1) [7]
  68.    defined in the SMI.  In particular, each object has a name, a syntax,
  69.    and an encoding.  The name is an object identifier, an
  70.    administratively assigned name, which specifies an object type.  The
  71.    object type together with an object instance serves to uniquely
  72.    identify a specific instantiation of the object.  For human
  73.    convenience, we often use a textual string, termed the OBJECT
  74.    DESCRIPTOR, to also refer to the object type.
  75.  
  76.    The syntax of an object type defines the abstract data structure
  77.    corresponding to that object type.  The ASN.1 language is used for
  78.    this purpose.  However, the SMI [3] purposely restricts the ASN.1
  79.    constructs which may be used.  These restrictions are explicitly made
  80.    for simplicity.
  81.  
  82.    The encoding of an object type is simply how that object type is
  83.    represented using the object type's syntax.  Implicitly tied to the
  84.    notion of an object type's syntax and encoding is how the object type
  85.    is represented when being transmitted on the network.
  86.  
  87.    The SMI specifies the use of the basic encoding rules of ASN.1 [8],
  88.    subject to the additional requirements imposed by the SNMP.
  89.  
  90. 3.1.  Format of Definitions
  91.  
  92.    Section 5 contains contains the specification of all object types
  93.    contained in this MIB module.  The object types are defined using the
  94.    conventions defined in the SMI, as amended by the extensions
  95.    specified in [9,10].
  96.  
  97. 4.  Overview
  98.  
  99.    These objects are used to control and manage a BGP [11,12]
  100.    implementation.
  101.  
  102.    The Border Gateway Protocol (BGP) is an inter-Autonomous System
  103.    routing protocol.  The primary function of a BGP speaking system is
  104.    to exchange network reachability information with other BGP systems.
  105.    This network reachability information includes information on the
  106.    full path of Autonomous Systems that traffic must transit to reach
  107.    these networks.
  108.  
  109.    BGP runs over a reliable transport protocol.  This eliminates the
  110.    need to implement explicit update fragmentation, retransmission,
  111.  
  112.  
  113.  
  114. Willis & Burruss                                                [Page 2]
  115.  
  116. RFC 1269                       BGP-3 MIB                    October 1991
  117.  
  118.  
  119.    acknowledgement, and sequencing.  Any authentication scheme used by
  120.    the transport protocol may be used in addition to BGP's own
  121.    authentication mechanisms.
  122.  
  123.    The planned use of BGP in the Internet environment, including such
  124.    issues as topology, the interaction between BGP and IGPs, and the
  125.    enforcement of routing policy rules is presented in a companion
  126.    document [12].
  127.  
  128.    Apart from a few system variables, this MIB is broken into two
  129.    tables: the BGP Peer Table and the BGP Received Path Attribute Table.
  130.    The Peer Table reflects information about BGP peer connections, such
  131.    as their state and current activity.  The Received Path Attribute
  132.    Table contains all attributes received from all peers before local
  133.    routing policy has been applied.  The actual attributes used in
  134.    determining a route are a subset of the received attribute table.
  135.  
  136. 5.  Definitions
  137.  
  138.                RFC1269-MIB DEFINITIONS ::= BEGIN
  139.  
  140.                IMPORTS
  141.                     NetworkAddress, IpAddress, Counter
  142.                          FROM RFC1155-SMI
  143.                     mib-2
  144.                          FROM RFC1213-MIB
  145.                   OBJECT-TYPE
  146.                          FROM RFC-1212
  147.                     TRAP-TYPE
  148.                          FROM RFC-1215;
  149.  
  150.                -- This MIB module uses the extended OBJECT-TYPE macro as
  151.                -- defined in [9], and the TRAP-TYPE macro as defined
  152.                -- in [10].
  153.  
  154.                bgp     OBJECT IDENTIFIER ::= { mib-2 15 }
  155.  
  156.                bgpVersion OBJECT-TYPE
  157.                     SYNTAX OCTET STRING
  158.                     ACCESS read-only
  159.                     STATUS mandatory
  160.                     DESCRIPTION
  161.                          "Vector of supported BGP protocol version
  162.                          numbers. Each peer negotiates the version from
  163.                          this vector.  Versions are identified via the
  164.                          string of bits contained within this object.
  165.                          The first octet contains bits 0 to 7, the
  166.                          second octet contains bits 8 to 15, and so on,
  167.  
  168.  
  169.  
  170. Willis & Burruss                                                [Page 3]
  171.  
  172. RFC 1269                       BGP-3 MIB                    October 1991
  173.  
  174.  
  175.                          with the most significant bit referring to the
  176.                          lowest bit number in the octet (e.g., the MSB
  177.                          of the first octet refers to bit 0).  If a bit,
  178.                          i, is present and set, then the version (i+1)
  179.                          of the BGP is supported."
  180.                     ::= { bgp 1 }
  181.  
  182.                bgpLocalAs OBJECT-TYPE
  183.                     SYNTAX INTEGER (0..65535)
  184.                     ACCESS read-only
  185.                     STATUS mandatory
  186.                     DESCRIPTION
  187.                          "The local autonomous system number."
  188.                     ::= { bgp 2 }
  189.  
  190.                bgpPeerTable OBJECT-TYPE
  191.                     SYNTAX SEQUENCE OF BgpPeerEntry
  192.                     ACCESS not-accessible
  193.                     STATUS mandatory
  194.                     DESCRIPTION
  195.                          "The bgp peer table."
  196.                     ::= { bgp 3 }
  197.  
  198.                bgpIdentifier OBJECT-TYPE
  199.                     SYNTAX IpAddress
  200.                     ACCESS read-only
  201.                     STATUS mandatory
  202.                     DESCRIPTION
  203.                          "The BGP Identifier of local system."
  204.                     ::= { bgp 4 }
  205.  
  206.                bgpPeerEntry OBJECT-TYPE
  207.                     SYNTAX BgpPeerEntry
  208.                     ACCESS not-accessible
  209.                     STATUS mandatory
  210.                     DESCRIPTION
  211.                          "Information about a BGP peer connection."
  212.                     INDEX
  213.                          { bgpPeerRemoteAddr }
  214.                         ::= { bgpPeerTable 1 }
  215.  
  216.                BgpPeerEntry ::= SEQUENCE {
  217.                     bgpPeerIdentifier
  218.                          IpAddress,
  219.                     bgpPeerState
  220.                          INTEGER,
  221.                     bgpPeerAdminStatus
  222.                          INTEGER,
  223.  
  224.  
  225.  
  226. Willis & Burruss                                                [Page 4]
  227.  
  228. RFC 1269                       BGP-3 MIB                    October 1991
  229.  
  230.  
  231.                     bgpPeerNegotiatedVersion
  232.                          INTEGER,
  233.                     bgpPeerLocalAddr
  234.                          IpAddress,
  235.                     bgpPeerLocalPort
  236.                          INTEGER,
  237.                     bgpPeerRemoteAddr
  238.                          IpAddress,
  239.                     bgpPeerRemotePort
  240.                          INTEGER,
  241.                     bgpPeerRemoteAs
  242.                          INTEGER,
  243.                     bgpPeerInUpdates
  244.                          Counter,
  245.                     bgpPeerOutUpdates
  246.                          Counter,
  247.                     bgpPeerInTotalMessages
  248.                          Counter,
  249.                     bgpPeerOutTotalMessages
  250.                          Counter,
  251.                     bgpPeerLastError
  252.                          OCTET STRING
  253.                     }
  254.  
  255.                bgpPeerIdentifier OBJECT-TYPE
  256.                     SYNTAX IpAddress
  257.                     ACCESS read-only
  258.                     STATUS mandatory
  259.                     DESCRIPTION
  260.                          "The BGP Identifier of this entry's BGP peer."
  261.                     ::= { bgpPeerEntry 1 }
  262.  
  263.                bgpPeerState OBJECT-TYPE
  264.                     SYNTAX INTEGER {
  265.                          idle(1),
  266.                          connect(2),
  267.                          active(3),
  268.                          opensent(4),
  269.                          openconfirm(5),
  270.                          established(6)
  271.                     }
  272.                     ACCESS read-only
  273.                     STATUS mandatory
  274.                     DESCRIPTION
  275.                          "The bgp peer connection state. "
  276.                     ::= { bgpPeerEntry 2 }
  277.  
  278.  
  279.  
  280.  
  281.  
  282. Willis & Burruss                                                [Page 5]
  283.  
  284. RFC 1269                       BGP-3 MIB                    October 1991
  285.  
  286.  
  287.                bgpPeerAdminStatus OBJECT-TYPE
  288.                     SYNTAX INTEGER
  289.                     ACCESS read-write
  290.                     STATUS mandatory
  291.                     DESCRIPTION
  292.                          "The desired state of the BGP connection. A
  293.                          transition from 'stop' to 'start' will cause
  294.                          the BGP Start Event to be generated. A
  295.                          transition from 'start' to 'stop' will cause
  296.                          the BGP Stop Event to be generated. This
  297.                          parameter can be used to restart BGP peer
  298.                          connections.  Care should be used in providing
  299.                          write access to this object without adequate
  300.                          authentication."
  301.                     ::= { bgpPeerEntry 3 }
  302.  
  303.                bgpPeerNegotiatedVersion OBJECT-TYPE
  304.                     SYNTAX INTEGER
  305.                     ACCESS read-only
  306.                     STATUS mandatory
  307.                     DESCRIPTION
  308.                          "The negotiated version of BGP running between
  309.                          the two peers. "
  310.                     ::= { bgpPeerEntry 4 }
  311.  
  312.                bgpPeerLocalAddr OBJECT-TYPE
  313.                     SYNTAX IpAddress
  314.                     ACCESS read-only
  315.                     STATUS mandatory
  316.                     DESCRIPTION
  317.                          "The local IP address of this entry's BGP
  318.                          connection."
  319.                     ::= { bgpPeerEntry 5 }
  320.  
  321.                bgpPeerLocalPort OBJECT-TYPE
  322.                     SYNTAX INTEGER (0..65535)
  323.                     ACCESS read-only
  324.                     STATUS mandatory
  325.                     DESCRIPTION
  326.                          "The local port for the TCP connection between
  327.                          the BGP peers."
  328.                     ::= { bgpPeerEntry 6 }
  329.  
  330.                bgpPeerRemoteAddr OBJECT-TYPE
  331.                     SYNTAX IpAddress
  332.                     ACCESS read-only
  333.                     STATUS mandatory
  334.                     DESCRIPTION
  335.  
  336.  
  337.  
  338. Willis & Burruss                                                [Page 6]
  339.  
  340. RFC 1269                       BGP-3 MIB                    October 1991
  341.  
  342.  
  343.                          "The remote IP address of this entry's BGP
  344.                          peer."
  345.                     ::= { bgpPeerEntry 7 }
  346.  
  347.                bgpPeerRemotePort OBJECT-TYPE
  348.                     SYNTAX INTEGER (0..65535)
  349.                     ACCESS read-only
  350.                     STATUS mandatory
  351.                     DESCRIPTION
  352.                          "The remote port for the TCP connection between
  353.                          the BGP peers.  Note that the objects
  354.                          bgpLocalAddr, bgpLocalPort, bgpRemoteAddr and
  355.                          bgpRemotePort provide the appropriate reference
  356.                          to the standard MIB TCP connection table."
  357.                     ::= { bgpPeerEntry 8 }
  358.  
  359.                bgpPeerRemoteAs OBJECT-TYPE
  360.                     SYNTAX INTEGER (0..65535)
  361.                     ACCESS read-only
  362.                     STATUS mandatory
  363.                     DESCRIPTION
  364.                          "The remote autonomous system number."
  365.                     ::= { bgpPeerEntry 9 }
  366.  
  367.                bgpPeerInUpdates OBJECT-TYPE
  368.                     SYNTAX Counter
  369.                     ACCESS read-only
  370.                     STATUS mandatory
  371.                     DESCRIPTION
  372.                          "The number of BGP UPDATE messages received on
  373.                          this connection. This object should be
  374.                          initialized to zero when the connection is
  375.                          established."
  376.                     ::= { bgpPeerEntry 10 }
  377.  
  378.                bgpPeerOutUpdates OBJECT-TYPE
  379.                     SYNTAX Counter
  380.                     ACCESS read-only
  381.                     STATUS mandatory
  382.                     DESCRIPTION
  383.                          "The number of BGP UPDATE messages received on
  384.                          this connection. This object should be
  385.                          initialized to zero when the connection is
  386.                          established."
  387.                     ::= { bgpPeerEntry 11}
  388.  
  389.                bgpPeerInTotalMessages OBJECT-TYPE
  390.                     SYNTAX Counter
  391.  
  392.  
  393.  
  394. Willis & Burruss                                                [Page 7]
  395.  
  396. RFC 1269                       BGP-3 MIB                    October 1991
  397.  
  398.  
  399.                     ACCESS read-only
  400.                     STATUS mandatory
  401.                     DESCRIPTION
  402.                          "The total number of messages received from the
  403.                          remote peer on this connection. This object
  404.                          should be initialized to zero when the
  405.                          connection is established."
  406.                     ::= { bgpPeerEntry 12 }
  407.  
  408.                bgpPeerOutTotalMessages OBJECT-TYPE
  409.                     SYNTAX Counter
  410.                     ACCESS read-only
  411.                     STATUS mandatory
  412.                     DESCRIPTION
  413.                          "The total number of messages transmitted to
  414.                          the remote peer on this connection. This object
  415.                          should be initialized to zero when the
  416.                          connection is established."
  417.                     ::= { bgpPeerEntry 13 }
  418.  
  419.                bgpPeerLastError OBJECT-TYPE
  420.                     SYNTAX OCTET STRING (SIZE (2))
  421.                     ACCESS read-only
  422.                     STATUS mandatory
  423.                     DESCRIPTION
  424.                          "The last error code and subcode seen by this
  425.                          peer on this connection. If no error has
  426.                          occurred, this field is zero. Otherwise, the
  427.                          first byte of this two byte OCTET STRING
  428.                          contains the error code; the second contains
  429.                          the subcode."
  430.                     ::= { bgpPeerEntry 14 }
  431.  
  432.                bgpRcvdPathAttrTable OBJECT-TYPE
  433.                     SYNTAX SEQUENCE OF BgpPathAttrEntry
  434.                     ACCESS not-accessible
  435.                     STATUS mandatory
  436.                     DESCRIPTION
  437.                          "The BGP Received Path Attribute Table contains
  438.                          information about paths to destination networks
  439.                          received by all peers."
  440.                     ::= { bgp 5 }
  441.  
  442.                bgpPathAttrEntry OBJECT-TYPE
  443.                     SYNTAX BgpPathAttrEntry
  444.                     ACCESS not-accessible
  445.                     STATUS mandatory
  446.                     DESCRIPTION
  447.  
  448.  
  449.  
  450. Willis & Burruss                                                [Page 8]
  451.  
  452. RFC 1269                       BGP-3 MIB                    October 1991
  453.  
  454.  
  455.                          "Information about a path to a network."
  456.                     INDEX
  457.                          { bgpPathAttrDestNetwork,
  458.                            bgpPathAttrPeer }
  459.                     ::= { bgpRcvdPathAttrTable 1 }
  460.  
  461.                BgpPathAttrEntry ::= SEQUENCE {
  462.                     bgpPathAttrPeer
  463.                          IpAddress,
  464.                     bgpPathAttrDestNetwork
  465.                          IpAddress,
  466.                     bgpPathAttrOrigin
  467.                          INTEGER,
  468.                     bgpPathAttrASPath
  469.                          OCTET STRING,
  470.                     bgpPathAttrNextHop
  471.                          IpAddress,
  472.                     bgpPathAttrInterASMetric
  473.                          INTEGER
  474.                     }
  475.  
  476.                bgpPathAttrPeer OBJECT-TYPE
  477.                     SYNTAX IpAddress
  478.                     ACCESS read-only
  479.                     STATUS mandatory
  480.                     DESCRIPTION
  481.                          "The IP address of the peer where the path
  482.                          information
  483.                           was learned."
  484.                     ::= { bgpPathAttrEntry 1 }
  485.  
  486.                bgpPathAttrDestNetwork OBJECT-TYPE
  487.                     SYNTAX IpAddress
  488.                     ACCESS read-only
  489.                     STATUS mandatory
  490.                     DESCRIPTION
  491.                          "The address of the destination network."
  492.                     ::= { bgpPathAttrEntry 2 }
  493.  
  494.                bgpPathAttrOrigin OBJECT-TYPE
  495.                     SYNTAX INTEGER {
  496.                          igp(1),-- networks are interior
  497.                          egp(2),-- networks learned via EGP
  498.                          incomplete(3) -- undetermined
  499.                     }
  500.                     ACCESS read-only
  501.                     STATUS mandatory
  502.                     DESCRIPTION
  503.  
  504.  
  505.  
  506. Willis & Burruss                                                [Page 9]
  507.  
  508. RFC 1269                       BGP-3 MIB                    October 1991
  509.  
  510.  
  511.                          "The ultimate origin of the path information."
  512.                     ::= { bgpPathAttrEntry 3 }
  513.  
  514.                bgpPathAttrASPath OBJECT-TYPE
  515.                     SYNTAX OCTET STRING
  516.                     ACCESS read-only
  517.                     STATUS mandatory
  518.                     DESCRIPTION
  519.                          "The set of ASs that must be traversed to reach
  520.                          the network. ( This object is probably best
  521.                          represented as SEQUENCE OF INTEGER. For SMI
  522.                          compatibility, though, it is represented as
  523.                          OCTET STRING. Each AS is represented as a pair
  524.                          of octets according to the following algorithm:
  525.  
  526.                               first-byte-of-pair = ASNumber / 256;
  527.                               second-byte-of-pair = ASNumber & 255;"
  528.                     ::= { bgpPathAttrEntry 4 }
  529.  
  530.                bgpPathAttrNextHop OBJECT-TYPE
  531.                     SYNTAX IpAddress
  532.                     ACCESS read-only
  533.                     STATUS mandatory
  534.                     DESCRIPTION
  535.                          "The address of the border router that should
  536.                          be used for the destination network."
  537.                     ::= { bgpPathAttrEntry 5 }
  538.  
  539.                bgpPathAttrInterASMetric OBJECT-TYPE
  540.                     SYNTAX IpAddress
  541.                     ACCESS read-only
  542.                     STATUS mandatory
  543.                     DESCRIPTION
  544.                          "The optional inter-AS metric. If this
  545.                          attribute has not been provided for this route,
  546.                          the value for this object is 0."
  547.                     ::= { bgpPathAttrEntry 6 }
  548.  
  549.                bgpEstablished TRAP-TYPE
  550.                     ENTERPRISE { bgp }
  551.                     VARIABLES  { bgpPeerRemoteAddr,
  552.                               bgpPeerLastError,
  553.                               bgpPeerState }
  554.                     DESCRIPTION
  555.                          "The BGP Established event is generated when
  556.                          the BGP FSM enters the ESTABLISHED state. "
  557.                     ::= 1
  558.  
  559.  
  560.  
  561.  
  562. Willis & Burruss                                               [Page 10]
  563.  
  564. RFC 1269                       BGP-3 MIB                    October 1991
  565.  
  566.  
  567.                bgpBackwardTransition TRAP-TYPE
  568.                     ENTERPRISE { bgp }
  569.                     VARIABLES  { bgpPeerRemoteAddr,
  570.                               bgpPeerLastError,
  571.                               bgpPeerState }
  572.                     DESCRIPTION
  573.                          "The BGPBackwardTransition Event is generated
  574.                          when the BGP FSM moves from a higher numbered
  575.                          state to a lower numbered state."
  576.                     ::= 2
  577.                END
  578.  
  579. 6.  Acknowledgements
  580.  
  581.    We would like to acknowledge the assistance of all the members of the
  582.    Interconnectivity Working Group, and particularly the following
  583.    individuals:
  584.  
  585.                Yakov Rekhter, IBM
  586.                Rob Coltun, University of Maryland
  587.                Guy Almes, Rice University
  588.                Jeff Honig, Cornell Theory Center
  589.                Marshall T. Rose, PSI, Inc.
  590.                Dennis Ferguson, University of Toronto
  591.                Mike Mathis, PSC
  592.  
  593. 7.  References
  594.  
  595.    [1] Cerf, V., "IAB Recommendations for the Development of Internet
  596.        Network Management Standards", RFC 1052, NRI, April 1988.
  597.  
  598.    [2] Cerf, V., "Report of the Second Ad Hoc Network Management Review
  599.        Group", RFC 1109, NRI, August 1989.
  600.  
  601.    [3] Rose M., and K. McCloghrie, "Structure and Identification of
  602.        Management Information for TCP/IP-based internets", RFC 1155,
  603.        Performance Systems International, Hughes LAN Systems, May 1990.
  604.  
  605.    [4] McCloghrie K., and M. Rose, "Management Information Base for
  606.        Network Management of TCP/IP-based internets", RFC 1156, Hughes
  607.        LAN Systems, Performance Systems International, May 1990.
  608.  
  609.    [5] Case, J., Fedor, M., Schoffstall, M., and J. Davin, "Simple
  610.        Network Management Protocol", RFC 1157, SNMP Research,
  611.        Performance Systems International, Performance Systems
  612.        International, MIT Laboratory for Computer Science, May 1990.
  613.  
  614.    [6] McCloghrie K., and M. Rose, Editors, "Management Information Base
  615.  
  616.  
  617.  
  618. Willis & Burruss                                               [Page 11]
  619.  
  620. RFC 1269                       BGP-3 MIB                    October 1991
  621.  
  622.  
  623.        for Network Management of TCP/IP-based internets", RFC 1213,
  624.        Performance Systems International, March 1991.
  625.  
  626.    [7] Information processing systems - Open Systems Interconnection -
  627.        Specification of Abstract Syntax Notation One (ASN.1),
  628.        International Organization for Standardization, International
  629.        Standard 8824, December 1987.
  630.  
  631.    [8] Information processing systems - Open Systems Interconnection -
  632.        Specification of Basic Encoding Rules for Abstract Notation One
  633.        (ASN.1), International Organization for Standardization,
  634.        International Standard 8825, December 1987.
  635.  
  636.    [9] Rose, M., and K. McCloghrie, Editors, "Concise MIB Definitions",
  637.        RFC 1212, Performance Systems International, Hughes LAN Systems,
  638.        March 1991.
  639.  
  640.   [10] Rose, M., Editor, "A Convention for Defining Traps for use with
  641.        the SNMP", RFC 1215, Performance Systems International, March
  642.        1991.
  643.  
  644.   [11] Lougheed, K., and Y. Rekhter, "A Border Gateway Protocol 3 (BGP-
  645.        3)", RFC 1267, cisco Systems, T.J. Watson Research Center, IBM
  646.        Corp., October 1991.
  647.  
  648.   [12] Rekhter, Y., and P. Gross, Editors, "Application of the Border
  649.        Gateway Protocol in the Internet", RFC 1268, T.J. Watson Research
  650.        Center, IBM Corp., ANS, October 1991.
  651.  
  652. 8.  Security Considerations
  653.  
  654.    Security issues are not discussed in this memo.
  655.  
  656.  
  657.  
  658.  
  659.  
  660.  
  661.  
  662.  
  663.  
  664.  
  665.  
  666.  
  667.  
  668.  
  669.  
  670.  
  671.  
  672.  
  673.  
  674. Willis & Burruss                                               [Page 12]
  675.  
  676. RFC 1269                       BGP-3 MIB                    October 1991
  677.  
  678.  
  679. Authors' Addresses
  680.  
  681.    Steven Willis
  682.    Wellfleet Communications Inc.
  683.    15 Crosby Drive
  684.    Bedford, MA 01730
  685.  
  686.    Phone: (617) 275-2400
  687.    Email: swillis@wellfleet.com
  688.  
  689.  
  690.    John Burruss
  691.    Wellfleet Communications Inc.
  692.    15 Crosby Drive
  693.    Bedford, MA 01730
  694.  
  695.    Phone: (617) 275-2400
  696.    Email: jburruss@wellfleet.com
  697.  
  698.  
  699.  
  700.  
  701.  
  702.  
  703.  
  704.  
  705.  
  706.  
  707.  
  708.  
  709.  
  710.  
  711.  
  712.  
  713.  
  714.  
  715.  
  716.  
  717.  
  718.  
  719.  
  720.  
  721.  
  722.  
  723.  
  724.  
  725.  
  726.  
  727.  
  728.  
  729.  
  730. Willis & Burruss                                               [Page 13]
  731.